home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-13 | 931 b | 36 lines | [TEXT/MPS ] |
- //# Copyright: © 1993 - 1995 by Apple Computer, Inc., all rights reserved.
-
- #ifndef _FOCI_
- #define _FOCI_
-
- #ifndef _ODTYPESB_
- #include "ODTypesB.idl"
- #endif
-
- #if defined(__SOMIDL__) && defined(EMIT_GLOBAL_CONSTANTS)
- #pragma somemittypes on
- #endif
-
- // Focus Types for the Arbitrator.
- // These strings are tokenized using ODSession::Tokenize()
-
- const ODTypeToken kODNullFocus = 0; // Returned by iterators. Ignored
- const ODFocusType kODKeyFocus = "Key";
- const ODFocusType kODMenuFocus = "Menu";
- const ODFocusType kODSelectionFocus = "Selection";
- const ODFocusType kODModalFocus = "Modal";
- const ODFocusType kODMouseFocus = "Mouse";
- const ODFocusType kODScrollingFocus = "Scrolling";
- const ODFocusType kODClipboardFocus = "Clipboard";
-
- #if defined(__SOMIDL__) && defined(EMIT_GLOBAL_CONSTANTS)
- #pragma somemittypes off
- #endif
-
- module OpenDoc_Foci
- {
- const string OpenDoc_Foci_Version = "1.0.";
- };
-
- #endif // _FOCI_
-